home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************
- * This ARexx script pops the window <window> to front. *
- * USAGE: poptofront <window> *
- * <window> can be title or address of the window. *
- **************************************************************************/
-
- if showlist('p','SCOUT.1') < 1 then do
- say "Scout is not running!"
- exit
- end
- address 'SCOUT.1'
- parse arg window
-
- options results
- options failat 20
-
- if window = '' then do
- say "usage: poptofront <window>"
- exit
- end
-
- PopToFront window
-